* lisp/repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
authorChong Yidong <cyd@stupidchicken.com>
Sat, 4 Jun 2011 23:00:29 +0000 (19:00 -0400)
committerChong Yidong <cyd@stupidchicken.com>
Sat, 4 Jun 2011 23:00:29 +0000 (19:00 -0400)
lisp/ChangeLog
lisp/repeat.el

index d9bfedf757bc6139f317e02806c6d4592da90779..eb56f4aa6fe3c8a8d7526b33d59f36615e1d4f2d 100644 (file)
@@ -1,3 +1,7 @@
+2011-06-04  Chong Yidong  <cyd@stupidchicken.com>
+
+       * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
+
 2011-06-04  Juanma Barranquero  <lekktu@gmail.com>
 
        * loadhist.el (unload-feature-special-hooks):
index ab0c42a0ddeb8dd76b09f7bc4bdd725fd1afe50c..a25b68d6220a23bb5a945590879c300a47693090 100644 (file)
@@ -124,7 +124,9 @@ if `repeat' is bound to C-x z, typing C-x z z z repeats the previous command
 only occurs if the final character by which `repeat' was invoked is a
 member of that sequence.  If this variable is nil, no re-execution occurs."
   :group 'convenience
-  :type 'boolean)
+  :type '(choice (const :tag "Repeat for all keys" t)
+                (const :tag "Don't repeat" nil)
+                (sexp :tag "Repeat for specific keys")))
 
 ;;;;; ****************** HACKS TO THE REST OF EMACS ******************* ;;;;;